home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / psybnc_check.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  45 lines

  1. if(description)
  2. {
  3.   script_id(14687);
  4.   script_version ("$Revision: 1.1 $");
  5.  
  6.   name["english"] = "psyBNC Server Detection";
  7.   script_name(english:name["english"]);
  8.  
  9.   desc["english"] = "
  10. The remote host appears to be running psyBNC on this port.
  11.  
  12. psyBNC is an 'easy-to-use, multi-user, permanent IRC-Bouncer with many features. Some 
  13. of its features include symmetric ciphering of talk and connections (Blowfish and IDEA),
  14. the possibility of linking multiple bouncers to an internal network including a shared 
  15. partyline, vhost- and relay support to connected bouncers and an extensive online help 
  16. system.'
  17.  
  18. The presence of this service indicates a high possibility that your server has been 
  19. compromised by a remote attacker.  The only sure fix is to reinstall from scratch.
  20.  
  21.  
  22. See also :
  23.   http://www.psybnc.info/about.html
  24.  http://www.psychoid.net/start.html
  25.  
  26. Solution : Make sure the presence of this service is intended
  27. Risk Factor : High";
  28.  
  29.   script_description(english:desc["english"]);
  30.   summary["english"] = "Check for the presence of psyBNC.";
  31.   script_summary(english:summary["english"]);
  32.   script_category(ACT_GATHER_INFO);
  33.  
  34.   script_copyright(english:"This script is Copyright (C) 2004 Scott Shebby");
  35.  
  36.   family["english"] = "General";
  37.   script_family(english:family["english"]);
  38.   script_dependencies("find_service2.nasl");
  39.   exit(0);
  40. }
  41.  
  42. # The detection is in find_service2.nasl
  43. port = get_kb_item("Services/psyBNC");
  44. if ( port ) security_hole(port:port, data:banner);
  45.